refactor(persistence): Store DateTime as ISO-8601 text in DB to preserve sub-seconds precision#2694
Conversation
…rve sub-second precision.
|
No actionable comments were generated in the recent review. 🎉 ℹ️ Recent review info⚙️ Run configurationConfiguration used: defaults Review profile: CHILL Plan: Pro Run ID: 📒 Files selected for processing (4)
📝 WalkthroughWalkthroughThis PR migrates the local cache database from storing DateTime as integer seconds to ISO-8601 text format, preserving millisecond precision. The schema version increments to 28, database options enable text-based DateTime storage, test matchers verify millisecond equality, and a new test validates the round-trip behavior. ChangesDateTime Millisecond Precision Storage
Estimated code review effort🎯 2 (Simple) | ⏱️ ~12 minutes Poem
🚥 Pre-merge checks | ✅ 5✅ Passed checks (5 passed)
✏️ Tip: You can configure your own custom pre-merge checks in the settings. ✨ Finishing Touches🧪 Generate unit tests (beta)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## master #2694 +/- ##
==========================================
- Coverage 65.38% 65.38% -0.01%
==========================================
Files 423 423
Lines 26664 26665 +1
==========================================
Hits 17435 17435
- Misses 9229 9230 +1 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
Submit a pull request
Linear: FLU-503
CLA
Description of the pull request
DateTimeis stored in DB -> from integer seconds to ISO-8601 Strings to preserve sub-second precisionSummary by CodeRabbit
Bug Fixes
Documentation
Tests